home *** CD-ROM | disk | FTP | other *** search
- /* cvorcs.h
- * define the monster array
- ***********************************************************************/
-
- struct monster {
- int iloc, dw, dseen ;
- struct cvloc *dloc, *oloc;
- } ;
-
- extern struct monster orcs[] ;
-
- #define ORC(o) (&(orcs[(o)]))
- #define IGRENDL 0
- #define GRENDL ORC(IGRENDL)
- #define IDRAGON 1
- #define PUFF ORC(IDRAGON)
- #define IKING 2
- #define ARTHUR ORC(IKING)
- #define IDJINN 3
- #define JEANNIE ORC(IDJINN)
- #define IKOBOLD 4
- #define SLASHER ORC(IKOBOLD)
- #define IBEAR 5
- #define YOGI ORC(IBEAR)
- #define IUNICRN 6
- #define EINHORN ORC(IUNICRN)
- #define IPRIEST 7
- #define PRIEST ORC(IPRIEST)
- #define IBALROG 8
- #define BALLY ORC(IBALROG)
- #define MINDWR ORC(9)
- #define MAXDWR ORC(14)
- #define IPIRAT 15
- #define PIRATE (&(orcs[IPIRAT]))
- #define ISELF 16
- #define ME ORC(ISELF)
-
-